home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Softwarová Záchrana 3
/
Softwarova-zachrana-3.bin
/
Xteq X-Setup
/
xqdcXSP-Setup-EN.exe
/
{app}
/
plugins
/
XQ WinMessenger 8.xpl
< prev
next >
Wrap
Text File
|
2002-01-10
|
1KB
|
60 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="5"
"COUNT"="1"
"UIPATH"="Internet\Instant Messaging\Windows Messenger\System"
"NAME"="Erase Outgoing Phone MRU List"
"VERSION"="1.13"
"LANGUAGE"="VBScript"
"TEXT 1"="Erase outgoing phone number list"
"DESCRIPTION 1"="If you do not want that other people can see the items you have opened, click the button."
"AUTHOR"="Xteq Systems"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
"COMMENT 2"="Thanks to CptSiskoX for his help!"
sP="HKEY_CURRENT_USER\Software\Microsoft\MessengerService\PhoneMRU\"
Sub Plugin_Initialize
If RegPathExists(sP)=false then
Disable()
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
if ElementIndex=1 then
for l=1 to i
s="PhoneMRU" & chr(97+l)
v=RegReadValue(sP & s)
If IsEmpty(v)=false then
Call RegDeleteValue(sP & S)
end if
Next
Call MsgInformation("Your Recent Outgoing Phone List entries have been eliminated.")
end if
if ElementIndex=2 then
'i=RegEnumValues(sp2a)
'for l=1 to i
' Call RegDeleteValue(sp2a & RegEnumElement(l))
'Next
'Call RegWriteValue(sp2b,0,2)
'Call MsgInformation("Outgoing Phone List Deleted and Purged!")
end if
End Sub
Sub Plugin_Terminate
End Sub